home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AGA Toolkit '97
/
The AGA Toolkit '97.iso
/
text
/
misc
/
port
/
string
/
strcat.s
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-09-07
|
234 b
|
16 lines
XDEF StrCat
XREF StrEnd
XREF StrCpy
; StrCat() - Adds a string (A1) to the end of another string (A0).
; Args:
; A0 = Pointer to the destination string.
; A1 = Pointer to the source string.
StrCat:
bsr StrEnd
bsr StrCpy
rts